Step method
Advances the index position to the next available Tag in the current TagIterator collection.
Syntax
Step As Boolean
Return Value
Returns True if the next Tag exists.
Remarks
Use the TagIterator.Start method to set the index position to the first available Tag in the current TagIterator collection.
Example
Dim TagExtractor
Set TagExtractor = AmCreateObject("IcTagExtractor.IcTagExtractor") Dim TagIterator Set TagIterator = TagExtractor.TagIterator(iCollectionType) If TagIterator.IsValid Then ‘Iterate through the collection TagIterator.Start Do ‘Do work here Loop While TagIterator.Step End If